home *** CD-ROM | disk | FTP | other *** search
/ PC Format (UK) 75 / PC Format 75 - Nov 1997.iso / delpac / PACMAN.~DP < prev    next >
Text File  |  1997-07-30  |  155b  |  13 lines

  1. program Pacman;
  2.  
  3. uses
  4.   Forms,
  5.   Pac in 'PAC.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.